aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga/[title]/[id]/[read]
diff options
context:
space:
mode:
authorreal-zephex <[email protected]>2024-04-26 23:57:32 +0530
committerreal-zephex <[email protected]>2024-04-26 23:57:32 +0530
commit4c74f9e66c6765f771f816ae64adaa2da66ed013 (patch)
tree653122ca698b5a2e99e6d8839c5bd2c976d652b2 /src/app/manga/[title]/[id]/[read]
parentminor ui fix (diff)
downloaddramalama-4c74f9e66c6765f771f816ae64adaa2da66ed013.tar.xz
dramalama-4c74f9e66c6765f771f816ae64adaa2da66ed013.zip
trying to implement edge runtime
Diffstat (limited to 'src/app/manga/[title]/[id]/[read]')
-rw-r--r--src/app/manga/[title]/[id]/[read]/page.jsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx
index 01080bf..f1e777d 100644
--- a/src/app/manga/[title]/[id]/[read]/page.jsx
+++ b/src/app/manga/[title]/[id]/[read]/page.jsx
@@ -2,6 +2,8 @@ import styles from "./read.module.css";
import Image from "next/image";
import DownloadManga from "./download";
+export const runtime = "edge";
+
export default async function Read({ params }) {
const chapterId = params.read;
const results = await getPages(chapterId);